module Base
{

    craftRecipe VFX_MakeBeerBreadToast
    {
        timedAction = Making,
        time = 20,
        category = Cooking,
        Tags = Toaster,

        inputs
        {
            item 1 [VFX.BeerBreadSlice] flags[InheritFood;ItemCount],
        }

        outputs
        {
            item 1 Base.VFXBeerBreadToast,
        }
    }

    craftRecipe VFX_MakeMilkBreadToast
    {
        timedAction = Making,
        time = 20,
        category = Cooking,
        Tags = Toaster,

        inputs
        {
            item 1 [VFX.MilkBreadSlice] flags[InheritFood;ItemCount],
        }

        outputs
        {
            item 1 Base.VFXMilkBreadToast,
        }
    }

    craftRecipe VFX_MakeBriocheToast
    {
        timedAction = Making,
        time = 20,
        category = Cooking,
        Tags = Toaster,

        inputs
        {
            item 1 [VFX.BriocheSlice] flags[InheritFood;ItemCount],
        }

        outputs
        {
            item 1 Base.VFXBriocheToast,
        }
    }

    craftRecipe VFX_MakeFocacciaBreadToast
    {
        timedAction = Making,
        time = 20,
        category = Cooking,
        Tags = Toaster,

        inputs
        {
            item 1 [VFX.FocacciaBreadSlice] flags[InheritFood;ItemCount],
        }

        outputs
        {
            item 1 Base.VFXFocacciaBreadToast,
        }
    }

    craftRecipe VFX_MakeBarleyBreadToast
    {
        timedAction = Making,
        time = 20,
        category = Cooking,
        Tags = Toaster,

        inputs
        {
            item 1 [VFX.BarleyBreadSlice] flags[InheritFood;ItemCount],
        }

        outputs
        {
            item 1 Base.VFXBarleyBreadToast,
        }
    }

    craftRecipe VFX_MakeBarleySourdoughToast
    {
        timedAction = Making,
        time = 20,
        category = Cooking,
        Tags = Toaster,

        inputs
        {
            item 1 [VFX.BarleySourdoughSlice] flags[InheritFood;ItemCount],
        }

        outputs
        {
            item 1 Base.VFXBarleySourdoughToast,
        }
    }

    craftRecipe VFX_MakeRyeBreadToast
    {
        timedAction = Making,
        time = 20,
        category = Cooking,
        Tags = Toaster,

        inputs
        {
            item 1 [VFX.RyeBreadSlice] flags[InheritFood;ItemCount],
        }

        outputs
        {
            item 1 Base.VFXRyeBreadToast,
        }
    }

    craftRecipe VFX_MakeRyeSourdoughToast
    {
        timedAction = Making,
        time = 20,
        category = Cooking,
        Tags = Toaster,

        inputs
        {
            item 1 [VFX.RyeSourdoughSlice] flags[InheritFood;ItemCount],
        }

        outputs
        {
            item 1 Base.VFXRyeSourdoughToast,
        }
    }

    craftRecipe VFX_MakePumpernickelToast
    {
        timedAction = Making,
        time = 20,
        category = Cooking,
        Tags = Toaster,

        inputs
        {
            item 1 [VFX.PumpernickelSlice] flags[InheritFood;ItemCount],
        }

        outputs
        {
            item 1 Base.VFXPumpernickelToast,
        }
    }

}